home *** CD-ROM | disk | FTP | other *** search
/ Plug-In Power Pack for Netscape Communicator / Plug-In Power Pack for Netscape Communicator.iso / plugins / dataviews / dvdraw / examples / testwin / testdlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-05-19  |  1.5 KB  |  63 lines

  1. #if !defined(AFX_TESTDLG_H__7D09436E_CD1E_11D0_A9D7_006097AB7F86__INCLUDED_)
  2. #define AFX_TESTDLG_H__7D09436E_CD1E_11D0_A9D7_006097AB7F86__INCLUDED_
  3.  
  4. #if _MSC_VER >= 1000
  5. #pragma once
  6. #endif // _MSC_VER >= 1000
  7. // TestDlg.h : header file
  8. //
  9.  
  10. #include "resource.h"
  11. #include "Tfundecl.h"
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CTestDlg dialog
  15.  
  16. class CTestChildWnd;
  17.  
  18.  
  19. class CTestDlg : public CDialog
  20. {
  21. // Construction
  22. public:
  23.     CTestDlg(VIEW view, RECTANGLE *wvp, char *clut, CWnd* pParent = NULL);
  24.   ~CTestDlg();
  25.  
  26. // Dialog Data
  27.     //{{AFX_DATA(CTestDlg)
  28.     enum { IDD = IDD_DIALOG1 };
  29.     CButton    m_ContPause;
  30.     CSliderCtrl    m_UpdRateSlider;
  31.     //}}AFX_DATA
  32.  
  33.  
  34. // Overrides
  35.     // ClassWizard generated virtual function overrides
  36.     //{{AFX_VIRTUAL(CTestDlg)
  37.     protected:
  38.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  39.     //}}AFX_VIRTUAL
  40.  
  41. // Implementation
  42. protected:
  43.   CTestChildWnd*  m_pTestChildWnd;
  44.   VIEW            m_View;
  45.   RECTANGLE*      m_pWvpRect;
  46.   char*           m_pszClut;
  47.  
  48.     // Generated message map functions
  49.     //{{AFX_MSG(CTestDlg)
  50.     afx_msg void OnGo();
  51.     afx_msg void OnStop();
  52.     afx_msg void OnPause();
  53.     virtual BOOL OnInitDialog();
  54.   afx_msg void OnSliderClick( NMHDR * pNotifyStruct, LRESULT * result );
  55.     //}}AFX_MSG
  56.     DECLARE_MESSAGE_MAP()
  57. };
  58.  
  59. //{{AFX_INSERT_LOCATION}}
  60. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  61.  
  62. #endif // !defined(AFX_TESTDLG_H__7D09436E_CD1E_11D0_A9D7_006097AB7F86__INCLUDED_)
  63.